Chr

Definition:

Chr(int)

 

Description:

Returns a string containing a single character represented by a supplied decimal value.

 

Platforms:

All

 

Parameters:

int - required

A decimal number representing the character to be returned.

 

Returns:

String containing the specified character.

 

Notes:

Chr() can be used to enter double quotes into a string, e.g.:

Dim q

q = Chr(34)

q = q & "hello"

will set the variable q to "hello.

Note that you can also include double quotes within a string by entering the character twice, "".